home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / misc / Fudgit233.lha / Source / src / math.tab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-14  |  1.2 KB  |  69 lines

  1. #define VAR 257
  2. #define BLTINVAR 258
  3. #define CONST 259
  4. #define BLTINCONST 260
  5. #define STRVAR 261
  6. #define BLTINSTRVAR 262
  7. #define STRCONST 263
  8. #define BLTINSTRCONST 264
  9. #define STRING 265
  10. #define UNDEFVEC 266
  11. #define UNDEFVAR 267
  12. #define UNDEFSTRVAR 268
  13. #define VEC 269
  14. #define AUTOVEC 270
  15. #define PARAM 271
  16. #define PRINT 272
  17. #define WHILE 273
  18. #define IF 274
  19. #define ELSE 275
  20. #define CONTINUE 276
  21. #define BREAK 277
  22. #define FOR 278
  23. #define RETURN 279
  24. #define FUNC 280
  25. #define PROC 281
  26. #define FUNCSYM 282
  27. #define PROCSYM 283
  28. #define EFUNCSYM 284
  29. #define EPROCSYM 285
  30. #define AUTO 286
  31. #define ARG 287
  32. #define AUTOSTRVAR 288
  33. #define BLTIN0 289
  34. #define BLTIN1 290
  35. #define BLTIN2 291
  36. #define STRBLTIN2 292
  37. #define BLTIN1VEC 293
  38. #define BLTIN0STR 294
  39. #define BLTIN1STR 295
  40. #define BLTIN2STR 296
  41. #define VARARG 297
  42. #define STRVARARG 298
  43. #define VECARG 299
  44. #define PARARG 300
  45. #define NUMBER 301
  46. #define DIVASS 302
  47. #define MULASS 303
  48. #define ADDASS 304
  49. #define SUBASS 305
  50. #define OR 306
  51. #define AND 307
  52. #define GT 308
  53. #define GE 309
  54. #define LT 310
  55. #define LE 311
  56. #define EQ 312
  57. #define NE 313
  58. #define UNARYMINUS 314
  59. #define NOT 315
  60. #define INCR 316
  61. #define DECR 317
  62. typedef union {
  63.     Symbol *sym;
  64.     Inst *inst;
  65.     int narg;
  66.     double val;
  67. } YYSTYPE;
  68. extern YYSTYPE Ft_mathyylval;
  69.